In [1]:
import metakernel
In [2]:
metakernel.__version__
Out[2]:
'0.13.7'
In [3]:
%%dot
graph MoDepends {
    M0 [label="Mod 0: Intro to Computing", shape=box, URL="https://cs.brynmawr.edu/"]
    M1 [label="Mod 1: Intro to Python", shape=box]
    M2 [label="Mod 2: Numerical Errors & Speed", shape=box]
    M3 [label="Mod 3: Iteration", shape=box]
    M4 [label="Mod 4: Differentiation", shape=box]
    M5 [label="Mod 5: Integration", shape=box]
    M6 [label="Mod 6: Linear Equations", shape=box]
    M8 [label="Mod 8: Eigenequations", shape=box]
    M9 [label="Mod 9: Fourier Analysis", shape=box]
    M10 [label="Mod 10: Diff'l Equations", shape=box]
    M11 [label="Mod 11: Monte Carlo", shape=box]
    M0->M1->M2
    M2->M3
    M2->M4
    M2->M5
    M2->M6
    M3->M11
    M4->M9
    M3->M10
    M4->M10
    M6->M8
    
}
MoDepends M0 Mod 0: Intro to Computing M1 Mod 1: Intro to Python M0--M1 M2 Mod 2: Numerical Errors & Speed M1--M2 M3 Mod 3: Iteration M2--M3 M4 Mod 4: Differentiation M2--M4 M5 Mod 5: Integration M2--M5 M6 Mod 6: Linear Equations M2--M6 M10 Mod 10: Diff'l Equations M3--M10 M11 Mod 11: Monte Carlo M3--M11 M9 Mod 9: Fourier Analysis M4--M9 M4--M10 M8 Mod 8: Eigenequations M6--M8
In [3]:
%%javascript

document.element = element;
In [3]:
%%python

from metakernel.display import display, HTML

display(HTML("<b>hello</b>"))
<IPython.core.display.HTML object>
In [1]:
%%dot

digraph G {Hello->World}
In [9]:
%%python

from IPython.display import display, HTML


display(HTML("<b>hello</b>"))
<IPython.core.display.HTML object>
In [ ]:
%download